home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AI Game Programming Wisdom
/
AIGameProgrammingWisdom.iso
/
SourceCode
/
07 DecisionMaking Architectures
/
01 Isla, Blumberg
/
EventNotifier.java
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Java Source
|
2001-09-25
|
372 b
|
12 lines
package bb;
/*
A so-far fairly empty event interface. Right now all it does is
distribute information about agent deaths to whoever is interested
(i.e. whatever class IMPLEMENTS the EventNotifier interface and
registers with the world to receive the event info).
*/
public interface EventNotifier {
public void deathNotification(Agent a, Vec2 location);
}